907f2b4f150c6d5aa4891e2a7b6452e5374a188e,src/test/java/com/continuuity/WordCountApp.java,WordCountApp,configure,#,58
Before Change
.withStreams().add(new Stream("text"))
.withDataSets().add(new KeyValueTable("mydataset"))
.withFlows().add(new WordCountFlow())
.noProcedure()/*withProcedures().add(new WordFrequency())*/.build();
}
public static final class MyRecord {
After Change
.withStreams().add(new Stream("text"))
.withDataSets().add(new KeyValueTable("mydataset"))
.withFlows().add(new WordCountFlow())
.withProcedures().add(new WordFrequency()).build();
}
public static final class MyRecord {